บทความนี้ขอกล่าวถึงเรื่อง Operator Mathematics หรือตัวดำเนินการทางคณิตศาสตร์ เช่น เครื่องหมายบวก ลบ คูณ และหาร ของภาษา C#
ภาพรวมของ การบวก ลบ คูณ หาร ด้วยภาษา C#
1. ใ้ช้เครื่องหมาย + ในการดำเนินการบวกค่าข้อมูล
2. ใ้ช้เครื่องหมาย - ในการดำเนินการลบค่าข้อมูล
3. ใ้ช้เครื่องหมาย * ในการดำเนินการคูณค่าข้อมูล
4. ใ้ช้เครื่องหมาย / ในการดำเนินการหารค่าข้อมูล
ตัวอย่างโปรแกรม
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace WindowsFormsApplication1
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void btnCal_Click(object sender, EventArgs e)
{
string ope = cbbOperator.Text.ToString();
int ans = 0;
int number1 = Convert.ToInt32(txtNumber1.Text.ToString());
int number2 = Convert.ToInt32(txtNumber2.Text.ToString());
switch (ope)
{
case "+":
ans = number1 + number2;
break;
case "-":
ans = number1 - number2;
break;
case "*":
ans = number1 * number2;
break;
case "/":
ans = number1 / number2;
break;
}
lblAns.Text = ans.ToString();
}
}
}
ผลลัพธ์